GCancellable *cancellable,
GError **error);
+gboolean _ostree_set_xattrs (GFile *f, GVariant *xattrs,
+ GCancellable *cancellable, GError **error);
+
+
/* XX + / + checksum-2 + . + extension, but let's just use 256 for a
* bit of overkill.
*/
return ret;
}
-/**
- * ostree_set_xattrs:
+/*
+ * _ostree_set_xattrs:
* @f: a file
* @xattrs: Extended attribute list
* @cancellable: Cancellable
* attributes.
*/
gboolean
-ostree_set_xattrs (GFile *f,
- GVariant *xattrs,
- GCancellable *cancellable,
- GError **error)
+_ostree_set_xattrs (GFile *f,
+ GVariant *xattrs,
+ GCancellable *cancellable,
+ GError **error)
{
const char *path;
gboolean ret = FALSE;
GCancellable *cancellable,
GError **error);
-gboolean ostree_set_xattrs (GFile *f, GVariant *xattrs,
- GCancellable *cancellable, GError **error);
-
gboolean
ostree_content_stream_parse (gboolean compressed,
GInputStream *input,
if (xattrs != NULL)
{
- if (!ostree_set_xattrs (dest_file, xattrs, cancellable, error))
+ if (!_ostree_set_xattrs (dest_file, xattrs, cancellable, error))
goto out;
}
*/
if (xattrs != NULL)
{
- if (!ostree_set_xattrs (temp_file, xattrs, cancellable, error))
+ if (!_ostree_set_xattrs (temp_file, xattrs, cancellable, error))
goto out;
}
}